home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / misc / pclta-1.000 / pclta-1 / hostappl / Makefile < prev    next >
Encoding:
Makefile  |  1996-05-27  |  236 b   |  16 lines

  1. #
  2. # Makefile,v 1.1 1996/05/27 16:19:39 miksic Exp
  3. #
  4.  
  5. CC = gcc
  6. DEBUG = -g
  7. CFLAGS += -Wall $(DEBUG)
  8.  
  9. OBJS = applmsg.o ha.o hauif.o ni_msg.o ldvpclta.o conio.o
  10.  
  11. ha: $(OBJS)
  12.     $(CC) $(DEBUG) $(OBJS) -o ha
  13.  
  14. clean:
  15.     rm -rf *.o ha NVCONFIG.TBL
  16.